home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / getw.c,v < prev    next >
Text File  |  1991-12-02  |  2KB  |  98 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.13.10.00.29;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.02.20.00.49;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * getw.c --
  32.  *
  33.  *    Source code for the "getw" library procedure.
  34.  *
  35.  * Copyright 1988 Regents of the University of California
  36.  * Permission to use, copy, modify, and distribute this
  37.  * software and its documentation for any purpose and without
  38.  * fee is hereby granted, provided that the above copyright
  39.  * notice appear in all copies.  The University of California
  40.  * makes no representations about the suitability of this
  41.  * software for any purpose.  It is provided "as is" without
  42.  * express or implied warranty.
  43.  */
  44.  
  45. #ifndef lint
  46. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  47. #endif not lint
  48.  
  49. #include "stdio.h"
  50.  
  51. /*
  52.  *----------------------------------------------------------------------
  53.  *
  54.  * getw --
  55.  *
  56.  *    Read an integer word from a stream, in order of increasing
  57.  *    byte number.  This procedure should be avoided like the
  58.  *    plague, since it's byte-order sensitive.
  59.  *
  60.  * Results:
  61.  *    The return value is the word read, or EOF if there was an
  62.  *    error (unfortunately, EOF looks just like an integer, so
  63.  *    the caller really has to call ferror).
  64.  *
  65.  * Side effects:
  66.  *    None.
  67.  *
  68.  *----------------------------------------------------------------------
  69.  */
  70.  
  71. int
  72. getw(stream)
  73.     register FILE *stream;        /* Stream from which to read. */
  74. {
  75.     int result, i;
  76.     register char *p;
  77.  
  78.     for (i = 0, p = (char *) &result; i < sizeof(int); i++, p++) {
  79.     *p = getc(stream);
  80.     }
  81.     if (feof(stream)) {
  82.     return EOF;
  83.     }
  84.     return result;
  85. }
  86. @
  87.  
  88.  
  89. 1.1.1.1
  90. log
  91. @Initial branch for Sprite server.
  92. @
  93. text
  94. @d17 1
  95. a17 1
  96. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/getw.c,v 1.1 88/06/13 10:00:29 ouster Exp $ SPRITE (Berkeley)";
  97. @
  98.